Skip to main content

YouTube Uploader - Let Others Upload Videos to your YouTube Channel

Make your own YouTube uploader form and let anyone upload videos of any size to your YouTube channel. The uploader can send videos even anonymously without a Google account.


It is easy to upload videos to your own YouTube channel but there’s one limitation. Only the owner of the channel can upload videos to their YouTube account and they cannot delegate the task to someone else in the team.

Google Drive has the concept of shared folders. A folder can have multiple collaborators and anyone can upload files to that folder. Wouldn’t it be useful if such a feature were available for YouTube channels as well? You maintain a single YouTube account and multiple people can upload videos to your common account without the owner having to share their Google account credentials with anyone.

youtube-video-uploader.png

YouTube Video Uploader for Collaboration

Introducing YouTube Uploader, a simple file upload form that lets anyone upload videos to your YouTube channel from their desktop or mobile phone.

The user who is uploading the video doesn’t even need a Google account and they’ll still be able to upload video files of any size to your YouTube channel via a simple online form. Once the video file is uploaded, YouTube will take a minute or two to process the video and, depending on your privacy setting, it will go live on the YouTube channel.

Make your Own YouTube Uploader

If you have a collaborative YouTube channel with multiple contributors, you may consider setting up your own private YouTube Uploader form and any of the contributors will be able to upload their work on your channel directly via the form.Here’s how you can build a YouTube uploader for your team in 3 easy steps.

Step 1: Click here to make a copy of the YouTube uploader script in your Google Drive.

An active YouTube channel must be associated with the Google Account where you are copying the script. It is recommended that you create a new Google account to test the YouTube uploader script and create a channel for that account.

Step 2: Inside the Google Script editor, go to the Publish menu, choose Deploy as Web App and click Update.

Step 3: You’ll be presented with an authorization screen as the script needs permission to upload videos to your YouTube channel. It also needs permission to send email notifications when a new video is uploaded. Click the Allow button.

That’s it. You’ll be presented with a video upload URL that you can share with your team members.

When any user clicks the URL, a simple web form opens where they can fill in the video title, description, the video category, and the privacy mode (the YouTube video can be private, public or unlisted).

All they have to do is select a video file from the desktop and click “Upload” to send the video to your YouTube channel directly.

YouTube Uploader Settings

YouTube Uploader - Things to Know

  • When deploying the web app, choose “Me” under the “Execute the App as” section and “Anyone, even anonymous” under the “Who has access to the app” section.
  • If you would like to disable the uploader, go to the script editor, choose Resources > Deploy as web app and click the “Disable web app” button.
  • You may keep the script URL secret and only share with people you know since it would let anyone upload videos to your YouTube channel.

The full source code of the application is included but the script requires a paid license for extended usage.

SHARE ON: Share on TwitterShare on WhatsAppShare on FacebookShare on Pocket

Comments

Post a Comment

Popular posts from this blog

How to Get the Quiz Score in Google Forms with Apps Script

Teachers can easily create an online quiz using Google Forms and students can view their test scores immediately after form submission. Teachers can use Google Forms to create an online quiz and students can view their test scores immediately after  form submission . With Apps Script, you can set up automatic  email notifications  and send quiz scores to parents after a student has taken the quiz. Here’s a sample Google Script that will iterate through every answer in the most recent Google Form response and log the max score (points) of a gradable question and the score for the respondent’s submitted answer. function getGoogleFormQuizScore ( ) { // Returns the form to which the script is container-bound. var form = FormApp . getActiveForm ( ) ; // Get the most recently submitted form response var response = form . getResponses ( ) . reverse ( ) [ 0 ] ; // Gets an array of all items in the form. var items = form . getItems ( ) ; for ( var...

Let People Quickly Save your Events on their Calendars

Create Add to Calendar links for emails and websites and let users quickly save your events on their own Google Calendar, Outlook or Yahoo Calendar. You are organizing an online event - maybe a meeting on Zoom or a training session hosted on Google Meet - and you would like the attendees to add the event to their own calendars. Once added to their calendar, the event will act as an automatic reminder and attendees will get a notification when the conference is about to start. There are two way to go about this: You can create a new meeting in your online calendar (Google, Outlook or any other calendar) and add the individual attendees as guests so the event automatically gets added to their calendar as well. You can include an “Add to Calendar” link or button in your email messages,  forms  and website pages. Anyone can click the link to quickly save your event on to their calendars - see  live demo . Create Add to Calendar Links for Emails and Websites The  Add to C...

How to Test your Eyes using the Computer

They say that you should get your eyes checked every two years but if haven’t had the chance to see a doctor all this time, you can test your vision on your computer as well. Of course these self eye tests are no substitute for visiting your doctor but if you follow the steps well, you may get some idea about how good (or bad) your vision is.  Test your Eyes Online with the Snellen Eye Chart The Snellen Eye Chart Most of us are familiar with the Snellen Chart that has rows of alphabets of different sizes – you read these letters from a distance, usually twenty feet, and the smallest row that you can recognize accurately indicates whether you have normal vision or not. The various eye testing tools that are available online make use of the same Snellen chart. Test your Eyesight Online You should start with University at Buffalo’s  IVAC tool . Use a physical ruler to measure the length of the line on the screen (the length will vary depending on your screen resolution). Also mea...